home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 March / macformat-022.iso / Shareware City / Developers / src / out-of-phase-102-c / OutOfPhase 1.02 Source / OutOfPhase Folder / CRC32.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-23  |  273 b   |  16 lines  |  [TEXT/KAHL]

  1. /* CRC32.h */
  2.  
  3. #ifndef Included_CRC32_h
  4. #define Included_CRC32_h
  5.  
  6. /* CRC32 module depends on */
  7. /* MiscInfo.h */
  8. /* Audit */
  9. /* Debug */
  10. /* Definitions */
  11.  
  12. /* calculate a CRC-32 on a block of data */
  13. unsigned long                            CalculateCRC32(char* Buffer, long NumBytes);
  14.  
  15. #endif
  16.